home *** CD-ROM | disk | FTP | other *** search
/ The Very Best of Atari Inside / The Very Best of Atari Inside 1.iso / mint / mntlib43 / mntlib / tcdrain.c < prev    next >
C/C++ Source or Header  |  1993-10-11  |  252b  |  18 lines

  1. /*
  2. Public domain termios tcdrain() for the MiNT library
  3. 10 October 1993 entropy@terminator.rs.itd.umich.edu -- first attempt
  4. */
  5.  
  6. #include <errno.h>
  7. #include <types.h>
  8. #include <termios.h>
  9.  
  10. int
  11. tcdrain(fd)
  12.   int fd;
  13. {
  14.   errno = -EINVAL;
  15.   return -1;
  16. }
  17.  
  18.